home *** CD-ROM | disk | FTP | other *** search
/ Sky at Night 2007 June / SAN CD 6-2007 CD-ROM 25.iso / pc / Software / AstroGrav_Win / Java / jre1.6.0 / lib / rt.jar / javax / sql / PooledConnection.class (.txt) < prev    next >
Encoding:
Java Class File  |  2006-11-29  |  443 b   |  19 lines

  1. package javax.sql;
  2.  
  3. import java.sql.Connection;
  4. import java.sql.SQLException;
  5.  
  6. public interface PooledConnection {
  7.    Connection getConnection() throws SQLException;
  8.  
  9.    void close() throws SQLException;
  10.  
  11.    void addConnectionEventListener(ConnectionEventListener var1);
  12.  
  13.    void removeConnectionEventListener(ConnectionEventListener var1);
  14.  
  15.    void addStatementEventListener(StatementEventListener var1);
  16.  
  17.    void removeStatementEventListener(StatementEventListener var1);
  18. }
  19.